Floating Search Bar
Step 1
We cannot directly remove the time stamp from Floating Search Bar but using the intl.dart package we can easily filter the date stamp from time stamp. So open your flutter project’s pubspec.yaml in code .
dependencies: flutter: sdk: flutter floating_search_bar: ^0.3.0
flutter pub get
import 'package:flutter/material.dart'; import 'package:floating_search_bar/floating_search_bar.dart'; import 'dart:io' show Platform; import 'package:flutter/foundation.dart'; void main() { if (!kIsWeb) _setTargetPlatformForDesktop(); return runApp(MyApp()); } void _setTargetPlatformForDesktop() { TargetPlatform targetPlatform; if (Platform.isMacOS) { targetPlatform = TargetPlatform.iOS; } else if (Platform.isLinux || Platform.isWindows) { targetPlatform = TargetPlatform.android; } if (targetPlatform != null) { debugDefaultTargetPlatformOverride = targetPlatform; } } class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, theme: ThemeData.light(), darkTheme: ThemeData.dark(), home: FloatingSearchBar.builder( pinned: true, itemCount: 100, padding: EdgeInsets.only(top: 10.0), itemBuilder: (BuildContext context, int index) { return ListTile( leading: Text(index.toString()), ); }, leading: CircleAvatar( child: Text("RD"), ), endDrawer: Drawer( child: Container(), ), onChanged: (String value) {}, onTap: () {}, decoration: InputDecoration.collapsed( hintText: "Search...", ), ), ); } }